home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / utmisc1 / alcun101.lha / src / romio.h < prev   
C/C++ Source or Header  |  1995-01-11  |  1KB  |  44 lines

  1. /*
  2.  *  This file is part of x48, an emulator of the HP-48sx Calculator.
  3.  *  Copyright (C) 1994  Eddie C. Dost  (ecd@dressler.de)
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20. /* $Log: romio.h,v $
  21.  * Revision 1.1  1995/01/11  18:11:25  ecd
  22.  * Initial revision
  23.  *
  24.  *
  25.  * $Id: romio.h,v 1.1 1995/01/11 18:11:25 ecd Exp ecd $
  26.  */
  27.  
  28. #ifndef _ROMIO_H
  29. #define _ROMIO_H 1
  30.  
  31. #include "global.h"
  32.  
  33. #define ROM_SIZE_SX 0x080000
  34. #define ROM_SIZE_GX 0x100000
  35.  
  36. extern unsigned int opt_gx;
  37. extern unsigned int rom_size;
  38.  
  39. extern int read_rom_file __ProtoType__((char *name,
  40.                                         unsigned char **mem,
  41.                                         int *size));
  42.  
  43. #endif /* !_ROMIO_H */
  44.